541847a61837a184df3da7a46fc8437de4d5c9dc,src/org/opensolaris/opengrok/analysis/uue/UuencodeAnalyzer.java,UuencodeAnalyzer,analyze,#Document#StreamSource#Writer#,58
Before Change
@Override
public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException {
TextField full=new TextField(QueryBuilder.FULL,getReader(src.getStream()));
full.setTokenStream(SymbolTokenizer); //this is to explicitely use appropriate analyzers tokenstream to workaround #1376 symbols search works like full text search
doc.add(full);
if (xrefOut != null) {
After Change
public void analyze(Document doc, StreamSource src, Writer xrefOut) throws IOException {
//this is to explicitely use appropriate analyzers tokenstream to workaround #1376 symbols search works like full text search
TextField full=new TextField(QueryBuilder.FULL,SymbolTokenizer);
this.SymbolTokenizer.setReader(getReader(src.getStream()));
doc.add(full);
if (xrefOut != null) {